Completed
Pull Request — develop (#110)
by Xaver
01:10
created

module.exports   A

Complexity

Conditions 1
Paths 2

Size

Total Lines 10

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
nc 2
dl 0
loc 10
rs 9.4285
nop 4

1 Function

Rating   Name   Duplication   Size   Complexity  
A 0 8 2
1
module.exports = function (gulp, plugins, config, env) {
2
  return function javascript() {
3
    return gulp.src('app.js')
4
      .pipe(env.development(plugins.sourcemaps.init()))
5
      .pipe(plugins.requirejsOptimize(env.production() ? config.requireJs.prod : config.requireJs.dev))
6
      .pipe(env.production(plugins.uglify({ preserveComments: 'license' })))
7
      .pipe(env.development(plugins.sourcemaps.write('.', { addComment: true })))
8
      .pipe(gulp.dest(config.build));
9
  };
10
};
11